home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Source.bin / CompareFunc.java < prev    next >
Text File  |  1998-08-21  |  215b  |  9 lines

  1. package symantec.itools.awt;
  2.  
  3. // 05/30/97 RKM     Moved CompareFunc interface into it's own file, at compiler's request
  4.  
  5. interface CompareFunc
  6. {
  7.     public abstract boolean lessThan(Object o1, Object o2);
  8. }
  9.